Pointer Assignment   Ex.5300
int i=1, *j, *k;
j = &i;
*j = 2;
i = *j + 1;
k = &i;
cout << *k;
Output is  ….   3